atanh
Antihyperbolic tangent
atanh()
function returns an inverse hyperbolic tangent of an angle.
Returns the inverse hyperbolic tangent value of different values:
<?php echo ( atanh ( M_PI_4 ) ) ; echo ( atanh ( 0.50 ) ) ; echo ( atanh ( - 0.50 ) ) ; echo ( atanh ( 1 ) ) ; echo ( atanh ( - 1 ) ) ; ?>
Try it yourself
atanh ( x )
parameter | describe |
---|---|
x | Required. A number. |
atanh()
function returns the inverse hyperbolic tangent value of x , that is, the value whose hyperbolic tangent is x .